home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / madwifi / net80211 / ieee80211_node.h < prev    next >
C/C++ Source or Header  |  2006-05-11  |  14KB  |  315 lines

  1. /*-
  2.  * Copyright (c) 2001 Atsushi Onoe
  3.  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. The name of the author may not be used to endorse or promote products
  15.  *    derived from this software without specific prior written permission.
  16.  *
  17.  * Alternatively, this software may be distributed under the terms of the
  18.  * GNU General Public License ("GPL") version 2 as published by the Free
  19.  * Software Foundation.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  22.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  23.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  24.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  25.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  30.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31.  *
  32.  * $Id: ieee80211_node.h 1512 2006-04-18 17:43:09Z dyqith $
  33.  */
  34. #ifndef _NET80211_IEEE80211_NODE_H_
  35. #define _NET80211_IEEE80211_NODE_H_
  36.  
  37. #include <net80211/ieee80211_ioctl.h>        /* for ieee80211_nodestats */
  38. #include <net80211/ieee80211_proto.h>        /* for proto macros on node */
  39.  
  40. /*
  41.  * Each ieee80211com instance has a single timer that fires once a
  42.  * second.  This is used to initiate various work depending on the
  43.  * state of the instance: scanning (passive or active), ``transition''
  44.  * (waiting for a response to a management frame when operating
  45.  * as a station), and node inactivity processing (when operating
  46.  * as an AP).  For inactivity processing each node has a timeout
  47.  * set in it's ni_inact field that is decremented on each timeout
  48.  * and the node is reclaimed when the counter goes to zero.  We
  49.  * use different inactivity timeout values depending on whether
  50.  * the node is associated and authorized (either by 802.1x or
  51.  * open/shared key authentication) or associated but yet to be
  52.  * authorized.  The latter timeout is shorter to more aggressively
  53.  * reclaim nodes that leave part way through the 802.1x exchange.
  54.  */
  55. #define    IEEE80211_INACT_WAIT    15        /* inactivity interval (secs) */
  56. #define    IEEE80211_INACT_INIT    (30/IEEE80211_INACT_WAIT)    /* initial */
  57. #define    IEEE80211_INACT_AUTH    (180/IEEE80211_INACT_WAIT)    /* associated but not authorized */
  58. #define    IEEE80211_INACT_RUN    (300/IEEE80211_INACT_WAIT)    /* authorized */
  59. #define    IEEE80211_INACT_PROBE    (30/IEEE80211_INACT_WAIT)    /* probe */
  60. #define    IEEE80211_INACT_SCAN    (300/IEEE80211_INACT_WAIT)    /* scanned */
  61.  
  62. #define    IEEE80211_TRANS_WAIT     5        /* mgt frame tx timer (secs) */
  63.  
  64. #define    IEEE80211_NODE_HASHSIZE    32
  65. /* simple hash is enough for variation of macaddr */
  66. #define    IEEE80211_NODE_HASH(addr)    \
  67.     (((const u_int8_t *)(addr))[IEEE80211_ADDR_LEN - 1] % \
  68.         IEEE80211_NODE_HASHSIZE)
  69.  
  70. struct ieee80211_rsnparms {
  71.     u_int8_t rsn_mcastcipher;    /* mcast/group cipher */
  72.     u_int8_t rsn_mcastkeylen;    /* mcast key length */
  73.     u_int8_t rsn_ucastcipherset;    /* unicast cipher set */
  74.     u_int8_t rsn_ucastcipher;    /* selected unicast cipher */
  75.     u_int8_t rsn_ucastkeylen;    /* unicast key length */
  76.     u_int8_t rsn_keymgmtset;        /* key mangement algorithms */
  77.     u_int8_t rsn_keymgmt;        /* selected key mgmt algo */
  78.     u_int16_t rsn_caps;        /* capabilities */
  79. };
  80.  
  81. struct ieee80211_node_table;
  82. struct ieee80211com;
  83. struct ieee80211vap;
  84.  
  85. /*
  86.  * Node specific information.  Note that drivers are expected
  87.  * to derive from this structure to add device-specific per-node
  88.  * state.  This is done by overriding the ic_node_* methods in
  89.  * the ieee80211com structure.
  90.  */
  91. struct ieee80211_node {
  92.     struct ieee80211vap *ni_vap;
  93.     struct ieee80211com *ni_ic;
  94.     struct ieee80211_node_table *ni_table;
  95.     TAILQ_ENTRY(ieee80211_node) ni_list;
  96.     LIST_ENTRY(ieee80211_node) ni_hash;
  97.     atomic_t ni_refcnt;
  98.     u_int ni_scangen;            /* gen# for timeout scan */
  99.     u_int8_t ni_authmode;            /* authentication algorithm */
  100.     u_int16_t ni_flags;            /* special-purpose state */
  101. #define    IEEE80211_NODE_AUTH    0x0001        /* authorized for data */
  102. #define    IEEE80211_NODE_QOS    0x0002        /* QoS enabled */
  103. #define    IEEE80211_NODE_ERP    0x0004        /* ERP enabled */
  104. /* NB: this must have the same value as IEEE80211_FC1_PWR_MGT */
  105. #define    IEEE80211_NODE_PWR_MGT    0x0010        /* power save mode enabled */
  106. #define    IEEE80211_NODE_AREF    0x0020        /* authentication ref held */
  107. #define IEEE80211_NODE_UAPSD    0x0040        /* U-APSD power save enabled */
  108. #define IEEE80211_NODE_UAPSD_TRIG 0x0080    /* U-APSD triggerable state */
  109. #define IEEE80211_NODE_UAPSD_SP    0x0100        /* U-APSD SP in progress */
  110.     u_int8_t ni_ath_flags;            /* Atheros feature flags */
  111.     /* NB: These must have the same values as IEEE80211_ATHC_* */
  112. #define IEEE80211_NODE_TURBOP    0x0001        /* Turbo prime enable */
  113. #define IEEE80211_NODE_COMP    0x0002        /* Compresssion enable */
  114. #define IEEE80211_NODE_FF    0x0004          /* Fast Frame capable */
  115. #define IEEE80211_NODE_XR    0x0008        /* Atheros WME enable */
  116. #define IEEE80211_NODE_AR    0x0010        /* AR capable */
  117. #define IEEE80211_NODE_BOOST    0x0080 
  118. #define IEEE80211_NODE_PS_CHANGED    0x0200    /* PS state change */ 
  119.     u_int16_t ni_ath_defkeyindex;        /* Atheros def key index */
  120. #define IEEE80211_INVAL_DEFKEY    0x7FFF
  121.     u_int16_t ni_associd;            /* assoc response */
  122.     u_int16_t ni_txpower;            /* current transmit power (in 0.5 dBm) */
  123.     u_int16_t ni_vlan;            /* vlan tag */
  124.     u_int32_t *ni_challenge;            /* shared-key challenge */
  125.     u_int8_t *ni_wpa_ie;            /* captured WPA ie */
  126.     u_int8_t *ni_rsn_ie;            /* captured RSN ie */
  127.     u_int8_t *ni_wme_ie;            /* captured WME ie */
  128.     u_int8_t *ni_ath_ie;            /* captured Atheros ie */
  129.     u_int16_t ni_txseqs[17];            /* tx seq per-tid */
  130.     u_int16_t ni_rxseqs[17];            /* rx seq previous per-tid*/
  131.     u_int32_t ni_rxfragstamp;        /* time stamp of last rx frag */
  132.     struct sk_buff *ni_rxfrag[3];        /* rx frag reassembly */
  133.     struct ieee80211_rsnparms ni_rsn;    /* RSN/WPA parameters */
  134.     struct ieee80211_key ni_ucastkey;    /* unicast key */
  135.     int ni_rxkeyoff;                /* Receive key offset */
  136.  
  137.     /* hardware */
  138.     u_int32_t ni_rstamp;            /* recv timestamp */
  139.     u_int32_t ni_last_rx;            /* recv jiffies */
  140.     u_int8_t ni_rssi;            /* recv ssi */
  141.  
  142.     /* header */
  143.     u_int8_t ni_macaddr[IEEE80211_ADDR_LEN];
  144.     u_int8_t ni_bssid[IEEE80211_ADDR_LEN];
  145.  
  146.     /* beacon, probe response */
  147.     union {
  148.         u_int8_t data[8];
  149.         u_int64_t tsf;
  150.     } ni_tstamp;                /* from last rcv'd beacon */
  151.     u_int16_t ni_intval;            /* beacon interval */
  152.     u_int16_t ni_capinfo;            /* capabilities */
  153.     u_int8_t ni_esslen;
  154.     u_int8_t ni_essid[IEEE80211_NWID_LEN];
  155.     struct ieee80211_rateset ni_rates;    /* negotiated rate set */
  156.     struct ieee80211_channel *ni_chan;
  157.     u_int16_t ni_fhdwell;            /* FH only */
  158.     u_int8_t ni_fhindex;            /* FH only */
  159.     u_int8_t ni_erp;                /* ERP from beacon/probe resp */
  160.     u_int16_t ni_timoff;            /* byte offset to TIM ie */
  161.  
  162.     /* others */
  163.     struct sk_buff_head ni_savedq;        /* packets queued for pspoll */
  164.     short ni_inact;                /* inactivity mark count */
  165.     short ni_inact_reload;            /* inactivity reload value */
  166.     int ni_txrate;                /* index to ni_rates[] */
  167.     struct ieee80211_nodestats ni_stats;    /* per-node statistics */
  168.     struct ieee80211vap *ni_prev_vap;      /* previously associated vap */
  169.     u_int8_t ni_uapsd;            /* U-APSD per-node flags matching WMM STA Qos Info field */
  170.     u_int8_t ni_uapsd_maxsp;         /* maxsp from flags above */
  171.     u_int16_t ni_uapsd_trigseq[WME_NUM_AC];     /* trigger suppression on retry */
  172.     u_int16_t ni_pschangeseq;
  173. };
  174. MALLOC_DECLARE(M_80211_NODE);
  175.  
  176. #define    IEEE80211_NODE_AID(ni)            IEEE80211_AID(ni->ni_associd)
  177.  
  178. #define    IEEE80211_NODE_STAT(ni,stat)        (ni->ni_stats.ns_##stat++)
  179. #define    IEEE80211_NODE_STAT_ADD(ni,stat,v)    (ni->ni_stats.ns_##stat += v)
  180. #define    IEEE80211_NODE_STAT_SET(ni,stat,v)    (ni->ni_stats.ns_##stat = v)
  181.  
  182. #define WME_UAPSD_AC_CAN_TRIGGER(_ac, _ni) ( \
  183.         ((ni)->ni_flags & IEEE80211_NODE_UAPSD_TRIG) && WME_UAPSD_AC_ENABLED((_ac), (_ni)->ni_uapsd) )
  184. #define WME_UAPSD_NODE_MAXQDEPTH    8
  185. #define IEEE80211_NODE_UAPSD_USETIM(_ni) (((_ni)->ni_uapsd & 0xF) == 0xF )
  186. #define WME_UAPSD_NODE_INVALIDSEQ    0xffff
  187. #define WME_UAPSD_NODE_TRIGSEQINIT(_ni)    (memset(&(_ni)->ni_uapsd_trigseq[0], 0xff, sizeof((_ni)->ni_uapsd_trigseq)))
  188.  
  189. static __inline struct ieee80211_node *
  190. ieee80211_ref_node(struct ieee80211_node *ni)
  191. {
  192.     ieee80211_node_incref(ni);
  193.     return ni;
  194. }
  195.  
  196. static __inline void
  197. ieee80211_unref_node(struct ieee80211_node **ni)
  198. {
  199.     ieee80211_node_decref(*ni);
  200.     *ni = NULL;            /* guard against use */
  201. }
  202.  
  203. void ieee80211_node_attach(struct ieee80211com *);
  204. void ieee80211_node_detach(struct ieee80211com *);
  205. void ieee80211_node_vattach(struct ieee80211vap *);
  206. void ieee80211_node_latevattach(struct ieee80211vap *);
  207. void ieee80211_node_vdetach(struct ieee80211vap *);
  208.  
  209. static __inline int
  210. ieee80211_node_is_authorized(const struct ieee80211_node *ni)
  211. {
  212.     return (ni->ni_flags & IEEE80211_NODE_AUTH);
  213. }
  214.  
  215. void ieee80211_node_authorize(struct ieee80211_node *);
  216. void ieee80211_node_unauthorize(struct ieee80211_node *);
  217.  
  218. void ieee80211_create_ibss(struct ieee80211vap *, struct ieee80211_channel *);
  219. void ieee80211_reset_bss(struct ieee80211vap *);
  220. int ieee80211_ibss_merge(struct ieee80211_node *);
  221. struct ieee80211_scan_entry;
  222. int ieee80211_sta_join(struct ieee80211vap *, const struct ieee80211_scan_entry *);
  223. void ieee80211_sta_join1_tasklet(IEEE80211_TQUEUE_ARG);
  224. void ieee80211_sta_leave(struct ieee80211_node *);
  225.  
  226. #define WDS_AGING_TIME        600   /* 10 minutes */ 
  227. #define WDS_AGING_COUNT     2 
  228. #define WDS_AGING_STATIC     0xffff
  229. #define WDS_AGING_TIMER_VAL     (WDS_AGING_TIME / 2)
  230.  
  231. struct ieee80211_wds_addr {
  232.     LIST_ENTRY(ieee80211_wds_addr) wds_hash;
  233.     u_int8_t    wds_macaddr[IEEE80211_ADDR_LEN];
  234.     struct ieee80211_node *wds_ni;
  235.     u_int16_t wds_agingcount;
  236. };
  237.     
  238. /*
  239.  * Table of ieee80211_node instances.  Each ieee80211com
  240.  * has at least one for holding the scan candidates.
  241.  * When operating as an access point or in ibss mode there
  242.  * is a second table for associated stations or neighbors.
  243.  */
  244. struct ieee80211_node_table {
  245.     struct ieee80211com *nt_ic;        /* back reference */
  246.     ieee80211_node_lock_t nt_nodelock;    /* on node table */
  247.     TAILQ_HEAD(, ieee80211_node) nt_node;    /* information of all nodes */
  248.     ATH_LIST_HEAD(, ieee80211_node) nt_hash[IEEE80211_NODE_HASHSIZE];
  249.     ATH_LIST_HEAD(, ieee80211_wds_addr) nt_wds_hash[IEEE80211_NODE_HASHSIZE];
  250.     const char *nt_name;            /* for debugging */
  251.     ieee80211_scan_lock_t nt_scanlock;    /* on nt_scangen */
  252.     u_int nt_scangen;            /* gen# for timeout scan */
  253.     int nt_inact_init;            /* initial node inact setting */
  254.     struct timer_list nt_wds_aging_timer;    /* timer to age out wds entries */
  255. };
  256.  
  257. struct ieee80211_node *ieee80211_alloc_node(struct ieee80211_node_table *,
  258.     struct ieee80211vap *, const u_int8_t *);
  259. struct ieee80211_node *ieee80211_tmp_node(struct ieee80211vap *,
  260.     const u_int8_t *);
  261. struct ieee80211_node *ieee80211_dup_bss(struct ieee80211vap *,
  262.     const u_int8_t *);
  263. void ieee80211_node_reset(struct ieee80211_node *, struct ieee80211vap *);
  264. #ifdef IEEE80211_DEBUG_REFCNT
  265. void ieee80211_free_node_debug(struct ieee80211_node *, const char *, int);
  266. struct ieee80211_node *ieee80211_find_node_debug(struct ieee80211_node_table *,
  267.     const u_int8_t *, const char *, int);
  268. struct ieee80211_node *ieee80211_find_rxnode_debug(struct ieee80211com *,
  269.     const struct ieee80211_frame_min *, const char *, int);
  270. struct ieee80211_node *ieee80211_find_txnode_debug(struct ieee80211vap *,
  271.     const u_int8_t *, const char *, int);
  272. #define    ieee80211_free_node(ni) \
  273.     ieee80211_free_node_debug(ni, __func__, __LINE__)
  274. #define    ieee80211_find_node(nt, mac) \
  275.     ieee80211_find_node_debug(nt, mac, __func__, __LINE__)
  276. #define    ieee80211_find_rxnode(nt, wh) \
  277.     ieee80211_find_rxnode_debug(nt, wh, __func__, __LINE__)
  278. #define    ieee80211_find_txnode(nt, mac) \
  279.     ieee80211_find_txnode_debug(nt, mac, __func__, __LINE__)
  280. #else
  281. void ieee80211_free_node(struct ieee80211_node *);
  282.  
  283. struct ieee80211_node *ieee80211_find_node(struct ieee80211_node_table *,
  284.     const u_int8_t *);
  285. struct ieee80211_node * ieee80211_find_rxnode(struct ieee80211com *,
  286.     const struct ieee80211_frame_min *);
  287. struct ieee80211_node *ieee80211_find_txnode(struct ieee80211vap *,
  288.     const u_int8_t *);
  289. #endif
  290. int ieee80211_add_wds_addr(struct ieee80211_node_table *, struct ieee80211_node *,
  291.     const u_int8_t *, u_int8_t);
  292. void ieee80211_remove_wds_addr(struct ieee80211_node_table *, const u_int8_t *);
  293. void ieee80211_del_wds_node(struct ieee80211_node_table *,
  294.     struct ieee80211_node *);
  295. struct ieee80211_node *ieee80211_find_wds_node(struct ieee80211_node_table *,
  296.     const u_int8_t *);
  297.  
  298. typedef void ieee80211_iter_func(void *, struct ieee80211_node *);
  299. void ieee80211_iterate_nodes(struct ieee80211_node_table *,
  300.     ieee80211_iter_func *, void *);
  301.  
  302. void    ieee80211_dump_node(struct ieee80211_node_table *,
  303.     struct ieee80211_node *);
  304. void    ieee80211_dump_nodes(struct ieee80211_node_table *);
  305.  
  306. struct ieee80211_node *ieee80211_fakeup_adhoc_node(struct ieee80211vap *,
  307.     const u_int8_t macaddr[]);
  308. struct ieee80211_scanparams;
  309. struct ieee80211_node *ieee80211_add_neighbor(struct ieee80211vap *,
  310.     const struct ieee80211_frame *, const struct ieee80211_scanparams *);
  311. void ieee80211_node_join(struct ieee80211_node *, int);
  312. void ieee80211_node_leave(struct ieee80211_node *);
  313. u_int8_t ieee80211_getrssi(struct ieee80211com *);
  314. #endif /* _NET80211_IEEE80211_NODE_H_ */
  315.